1
/****************************** Module Header ******************************\
2 * Module Name: IProcessDataWorkflowService.cs
3 * Project: WFServiceLibrary
4 * Copyright (c) Microsoft Corporation.
6 * This is the contract of the workflow service.
8 * This source is subject to the Microsoft Public License.
9 * See http://www.microsoft.com/opensource/licenses.mspx#Ms-PL.
10 * All other rights reserved.
12 * THIS CODE AND INFORMATION IS PROVIDED "AS IS" WITHOUT WARRANTY OF ANY KIND,
13 * EITHER EXPRESSED OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE IMPLIED
14 * WARRANTIES OF MERCHANTABILITY AND/OR FITNESS FOR A PARTICULAR PURPOSE.
15 \***************************************************************************/
18 using System
.Collections
.Generic
;
21 using System
.ServiceModel
;
23 namespace WFServiceLibrary
25 // This simple workflow service doesn't need sesion.
26 [ServiceContract(SessionMode
= SessionMode
.NotAllowed
)]
27 public interface IProcessDataWorkflow
30 string ProcessData(int value);